home *** CD-ROM | disk | FTP | other *** search
- on(press){
- var thisname = parseInt(this._name.substr("location_".length));
- var message;
- if(_root.lastscene == "colony_nest")
- {
- message = "" + _root.moveto_str + " " + _root.localename[thisname] + "\n";
- message += "" + _root.willcost_str + " " + _root.locale_cost[thisname] + " " + _root.gems_str + "\n";
- message += "" + _root.willuse_str + " " + parseInt(_root.antstats[_root.gc_pop] / _root.upkeepcost / _root.foodmovecost) + " " + _root.food_str + "\n";
- _root.confirm_action("nest",thisname,message);
- }
- else
- {
- trace(thisname);
- _root.select_locale(thisname);
- if(_root.lastlocale != _root.localetype)
- {
- _root.move_nest(0);
- }
- _root.lastlocale = _root.localetype;
- _root.locale_visited[_root.localetype] = true;
- _root.pause = false;
- }
- }
-